/*Create a Java program to access the java.util.Date class through import keyword and print the current date of the system. */

import java.util.Date;

public class packages1_7024 {
    public static void main(String[] args) {
        
        Date currentDate = new Date();
        
        System.out.println("Current Date: " + currentDate);
    }
}